/************************************* * File: Money.cpp * Author: Katherine Gibson * Date: 3/1/2016 * Section: N/A * E-mail: k38@umbc.edu * Description: * This file contains the * prototype for a Money class *************************************/ using namespace std; #include class Money { public: Money( ); Money(int dollars, int cents); void Output(string name); Money operator- ( const Money& amount2); private: int m_dollars; int m_cents; };